From 47deac4e5de8be5533ce3c5e33ca0811db9b75bf Mon Sep 17 00:00:00 2001 From: Techcable Date: Mon, 14 Jul 2025 06:49:31 -0700 Subject: [PATCH] Fix documentation for UTF8PROC_COMPOSE (#295) The documentation for UTF8PROC_COMPOSE and UTF8PROC_DECOMPOSE options was the same. Fic --- utf8proc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8proc.h b/utf8proc.h index c83dc58..59e5389 100644 --- a/utf8proc.h +++ b/utf8proc.h @@ -150,7 +150,7 @@ typedef enum { UTF8PROC_STABLE = (1<<1), /** Compatibility decomposition (i.e. formatting information is lost). */ UTF8PROC_COMPAT = (1<<2), - /** Return a result with decomposed characters. */ + /** Return a result with composed characters. */ UTF8PROC_COMPOSE = (1<<3), /** Return a result with decomposed characters. */ UTF8PROC_DECOMPOSE = (1<<4), -- 2.30.2